home *** CD-ROM | disk | FTP | other *** search
/ Aminet 44 / Aminet 44 (2001)(GTI - Schatztruhe)[!][Aug 2001].iso / Aminet / comm / mail / YAM23src.lha / Source / extrasrc / dice.c < prev    next >
C/C++ Source or Header  |  2001-03-11  |  650b  |  32 lines

  1. #if defined(_DCC) || defined(NO_INLINE_STDARG)
  2. #include <proto/xpkmaster.h>
  3. LONG XpkQueryTags(ULONG tags, ...)
  4. {
  5.    struct TagItems *_tags =(struct TagItems *)&tags;
  6.    return XpkQuery(_tags);
  7. }
  8.  
  9. LONG XpkPackTags(ULONG tags, ...)
  10. {
  11.    struct TagItems *_tags =(struct TagItems *)&tags;
  12.    return XpkPack(_tags);
  13. }
  14.  
  15. LONG XpkUnpackTags(ULONG tags, ...)
  16. {
  17.    struct TagItems *_tags =(struct TagItems *)&tags;
  18.    return XpkUnpack(_tags);
  19. }
  20. #include <proto/openurl.h>
  21. BOOL URL_Open(STRPTR str, ULONG tags, ...)
  22. {
  23.    struct TagItems *_tags =(struct TagItems *)&tags;
  24.    return URL_OpenA(str,_tags);
  25. }
  26. #endif
  27.  
  28.  
  29. #ifdef _DCC
  30. struct Library *KeymapBase;
  31. #endif
  32.